33d85992953e10af3ae7d2e8c6f23da23f294335,android-client-common/src/main/java/com/google/android/apps/muzei/provider/MuzeiProvider.java,MuzeiProvider,getCacheFileForArtworkUri,#Uri#,751

Before Change


        String id = data.getString(0);
        String imageUri = data.getString(1);
        data.close();
        if (TextUtils.isEmpty(imageUri)) {
            return new File(directory, id);
        }
        // Otherwise, create a unique filename based on the imageUri

After Change


        String imageUri = data.getString(1);
        String token = data.getString(2);
        data.close();
        if (TextUtils.isEmpty(imageUri) && TextUtils.isEmpty(token)) {
            return new File(directory, id);
        }
        // Otherwise, create a unique filename based on the imageUri and token